/* GENERAL */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-image: url(./img/Background\ w\ noise\ maybe.png);
    /* z-index: -1; */
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /* z-index: 1; */
}



/* FONT & TEXT */

@font-face {
    font-family: "mutlu";
    src: url(./fonts/MUTLU__ORNAMENTAL.TTF);
}

@font-face {
    font-family: "perpetua";
    src: url(./fonts/PER_____.TTF);
}

@font-face {
    font-family: "quicksand";
    src: url(./fonts/QUICKSAND-REGULAR.TTF);
}

h1 {
    font-family: "mutlu";
    font-weight: 100;
    color: #CF5C36;
}

h2 {
    font-family: "perpetua";
    font-weight: 100;
    letter-spacing: -1.5px;
    color: #CF5C36;
}

p {
    font-family: "quicksand";
    color: #2D2C2A;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
}

a {
    text-decoration: none;
    font-family: "quicksand";
    color: #2D2C2A;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
}

a:hover {
    color: #cf5c368d;
}



/* MOBILE SITE */

.site-mobile {
    padding: 3%;
    width: 100vw;
    height: 100vh;
    display: flex;
    /* border: 5px solid #2D2C2A; */
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* background-color: lightblue; */
}

.site-mobile div {
    width: 100%;
    height: auto;
}

#top {
    /* width: 100%; */
    padding: 1vh;
    /* background-color: pink; */
}

#central-logo {
    /* height: 45vh; */
    /* width: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    /* background-color: red; */
}

#footer {
    display: flex;
    flex-direction: row;
    /* background-color: orange; */
}

#menu-container {
    /* height: 40vh; */
    padding: 1%;
    /* background-color: green; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#baseline {
    /* height: 20vh; */
    /* background-color: brown; */
    align-items: left;
    justify-content: left;

}


#dissolve_logo {
    width: 350px;
    /* padding-top: 5vh; */
    justify-content: center;
    opacity: 0.6;

}

.menu {
    width: 100%;
    /* margin-top: -25vh; */
}

#menu-list {
    list-style-type: none;
    /* margin: 0; */
    /* padding-bottom: 10vh; */
    /* width: 100%; */
    /* background-color: yellow; */
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 4rem;
}

li {
    font-family: "quicksand";
}



/* DESKTOP SITE */

.site-desktop {
    width: 100vw;
    height: 100vh;
    display: flex;
    /* border: 5px solid #2D2C2A; */
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* background-color: lightblue; */
}

.site-desktop div {
    width: 100%;
    height: auto;
}

#a-top {
    /* background-color: rgba(255, 127, 80, 0.6); */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 80vh;
}

#b-bottom {
    /* background-color: palegreen; */
    height: 20vh;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    gap: 1.5vh;
    padding-left: 5vw;
    padding-right: 5vw;

}

#leftbx {
    /* background-color: grey;
    border: 5px solid black; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5vh;
    height: 100%;
    width: 33vw;
}

#desk-circ {
    /* background-color: orange; */
    width: 34px;
}

#midbx {
    /* background-color: rgb(165, 42, 42); */
    /* border: 5px solid black; */
    padding-bottom: 5vh;
    display: flex;
    align-items: end;
    justify-content: center;
    object-fit: contain;
    height: 100%;
    min-width: 44vw;
}

#desk-logo {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

#rightbx {
    /* background-color: purple;
    border: 5px solid black; */
    height: 100%;
    width: 33vw;
    display: flex;
    flex-direction: column;
}

#menutop {
    min-height: 50%;
    width: 100%;
    /* background-color: pink; */

}

#desk-menulist {
    list-style-type: none;
    padding-top: 3vh;
    padding-right: 2vw;
    /* width: 100%; */
    /* background-color: yellow; */
    text-align: right;
    line-height: 1.8rem;
}

#leoft {
    min-height: 50%;
    width: 100%;
}

#ft-line {
    /* background: orange; */
    width: 100%;
}

#infinity-txt {
    text-align: right;
    font-size: 0.6rem;
}


























/* MEDIA QUERIES ETC. */
/* .site-desktop {
        display: flex;
    }

    .site-mobile {
        display: none;
    }


@media screen and (max-width: 768px) {
    .site-desktop {
        display: none;
    }

    .site-mobile {
        display: flex;
    }
} */